home *** CD-ROM | disk | FTP | other *** search
- //Copyright 1998 Macromedia, Inc. All rights reserved.
-
- function displayHelp(){
- var rootPath = dw.getConfigurationPath();
- var idPath = rootPath.substring(0,rootPath.lastIndexOf("/")) + "/Help/contextID.html";
- if (DWfile.exists(idPath)) {
- var idRoot = dreamweaver.getDocumentDOM(idPath);
- var contextSetter = idRoot.documentElement;
- var idURL = idRoot.URL;
- var endURL = idURL.indexOf('contextID');
- var driveURL = idURL.substring(0,endURL);
-
- contextSetter.innerHTML = '<' + 'head>\n<' + 'title>context setter<' + '/title>\n\n<' + 'script language="javascript">\nfunction setContext() {\n parent.right.location="' + driveURL + helpDoc + '";\n}\n<' + '/script>\n<' + '/head>\n\n<' + 'body onLoad="setContext()">\n<' + '/body>';
-
- DWfile.write(idURL, contextSetter.outerHTML);
- dreamweaver.releaseDocument(idRoot);
- var helpFrameset = driveURL + 'ContextHelp.htm';
- dreamweaver.browseDocument(helpFrameset);
-
- } else { //help file not found
- alert(MM.HELP_errorFileNotFound + idPath);
- }
- }
-